# 3.1 Overview

Controller is one of JFinal's core classes, serving as the controller in the MVC pattern. Web applications based on JFinal need their controllers to inherit from this class. The Controller is where Action methods are defined and is a way to organize Actions. A Controller can contain multiple Actions. Importantly, the Controller is thread-safe.

Last Updated: 9/17/2023, 5:50:29 AM